Telegram Group & Telegram Channel
🇩🇪 بسته URLLIB

❗️ این بسته که برای کار با URLها از چندین ماژول استفاده می‌کند که عبارتند از:

urllib.request که برای باز کردن و خواندن URLها استفاده می‌شود.

urllib.error که برای مدیریت کردن خطاهایی است که توسط  urllib.request بوجود آمده‌اند.

🤔 ماژول urllib.request رابطی بسیار ساده برای ایجاد درخواست‌ها بوجود می‌آورد و هم‌چنین برای مدیریت‌کردن احراز هویت‌ گزینه‌های بیشتری در اختیار برنامه نویس قرار می‎دهد.

↙️ در کد زیر درخواستی توسط متد urlopen فرستاده شد:

import urllib

req = urllib.request.urlopen('https://example.ir')

print(req.status)

🔅 دریافت منبع از اینترنت هم توسط متد urlretrieve انجام می‌شود.

 

⭕️ مثال تفاوت دریافت عکس با Urllib و Requests :

import urllib

url = 'https://www.python.org/static/opengraph-icon-200x200.png'

urllib.request.urlretrieve(url, "image-urllib.png")



import requests

url = 'https://www.python.org/static/opengraph-icon-200x200.png'

r = requests.get(url)

with open("image-requests.png", "wb") as code:

    code.write(r.content)



tg-me.com/python12/1374
Create:
Last Update:

🇩🇪 بسته URLLIB

❗️ این بسته که برای کار با URLها از چندین ماژول استفاده می‌کند که عبارتند از:

urllib.request که برای باز کردن و خواندن URLها استفاده می‌شود.

urllib.error که برای مدیریت کردن خطاهایی است که توسط  urllib.request بوجود آمده‌اند.

🤔 ماژول urllib.request رابطی بسیار ساده برای ایجاد درخواست‌ها بوجود می‌آورد و هم‌چنین برای مدیریت‌کردن احراز هویت‌ گزینه‌های بیشتری در اختیار برنامه نویس قرار می‎دهد.

↙️ در کد زیر درخواستی توسط متد urlopen فرستاده شد:

import urllib

req = urllib.request.urlopen('https://example.ir')

print(req.status)

🔅 دریافت منبع از اینترنت هم توسط متد urlretrieve انجام می‌شود.

 

⭕️ مثال تفاوت دریافت عکس با Urllib و Requests :

import urllib

url = 'https://www.python.org/static/opengraph-icon-200x200.png'

urllib.request.urlretrieve(url, "image-urllib.png")



import requests

url = 'https://www.python.org/static/opengraph-icon-200x200.png'

r = requests.get(url)

with open("image-requests.png", "wb") as code:

    code.write(r.content)

BY پایتون / python




Share with your friend now:
tg-me.com/python12/1374

View MORE
Open in Telegram


پایتون python Telegram | DID YOU KNOW?

Date: |

A project of our size needs at least a few hundred million dollars per year to keep going,” Mr. Durov wrote in his public channel on Telegram late last year. “While doing that, we will remain independent and stay true to our values, redefining how a tech company should operate.

Start with a fresh view of investing strategy. The combination of risks and fads this quarter looks to be topping. That means the future is ready to move in.Likely, there will not be a wholesale shift. Company actions will aim to benefit from economic growth, inflationary pressures and a return of market-determined interest rates. In turn, all of that should drive the stock market and investment returns higher.

پایتون python from sg


Telegram پایتون / python
FROM USA